home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir33 / rfp106.zip / INSTFORM.BAT < prev    next >
DOS Batch File  |  1992-06-18  |  877b  |  32 lines

  1. echo off
  2. cls
  3. if %1x == x goto error
  4. if %2x == x goto error
  5. if %3x == x goto error
  6. echo This batch file installs the Form Master program in the selected directory
  7. echo .
  8. if not exist instform.bat  goto floppy
  9. pause
  10. md %2%3
  11. cls
  12. echo Installing Form Master Program, Please Wait
  13. pkunzip -o form4x.zip   %2%3
  14. goto end
  15. :floppy
  16. pause
  17. md %2%3
  18. cls
  19. echo Installing Form Master Program, Please Wait
  20. %1\pkunzip -o %1\form4x.zip   %2%3
  21. goto endmsg
  22. :error
  23. echo  ERROR - You have failed to use the correct parameters.
  24. echo          The correct syntax is a:\instform a: c: \rfp where a:
  25. echo          is the source drive, c: is the destination drive and
  26. echo          \rfp is the subdirectory into which you Form Master
  27. echo          installed. Please use the correct parameters and try again.
  28. goto end
  29. :endmsg
  30. echo The Form Master Program is now installed
  31. :end
  32.